home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / util4 / cmpdirs.lha / CmpDirs / Install_CmpDirs < prev    next >
Text File  |  1995-10-29  |  2KB  |  58 lines

  1. ;=============================================================================;
  2. ;=============================================================================;
  3. ;
  4. ; $VER: Install_CmpDirs 1.0 (29.10.1995)
  5. ;
  6. ; Installation script for CmpDirs
  7. ; (c) Copyright 1995 by Christian Rattei
  8. ;
  9. ;=============================================================================;
  10. ;=============================================================================;
  11.  
  12. (set #choose-c-dir "Please choose the directory where CmpDirs should be installed.")
  13. (set #chose-c-dir-help "To this location the executable CmpDirs will be copied. The location should be C: or any directory that lies in your path. Otherwise you will have to start CmpDirs with full path specification!\n\nCmpDirs may be made resident")
  14. (set #copy-c "Copy CmpDirs")
  15. (set #choose-doc-dir "Please choose the directory where the documentation for CmpDirs should be installed.")
  16. (set #chose-doc-dir-help "To this location the documentation file of CmpDirs (CmpDirs.doc) will be copied.")
  17. (set #copy-doc "Copy CmpDirs.doc")
  18.  
  19. (complete 0)
  20.  
  21. (set @default-dest
  22.  (askdir
  23.   (prompt #choose-c-dir)
  24.   (help #chose-c-dir-help)
  25.   (default "C:")
  26.  )
  27. )
  28.  
  29. (protect "CmpDirs" "prwed")
  30.  
  31. (copyfiles
  32.  (prompt #copy-c)
  33.  (source "")
  34.  (dest @default-dest)
  35.  (choices "CmpDirs")
  36. )
  37.  
  38. (complete 50)
  39.  
  40. (set @default-dest
  41.  (askdir
  42.   (prompt #choose-doc-dir)
  43.   (help #chose-doc-dir-help)
  44.   (default "C:")
  45.  )
  46. )
  47.  
  48. (copyfiles
  49.  (prompt #copy-doc)
  50.  (source "")
  51.  (dest @default-dest)
  52.  (choices "CmpDirs.doc")
  53. )
  54.  
  55. (complete 100)
  56.  
  57. ;=============================================================================;
  58.